@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Roboto:wght@300;400&family=Work+Sans:wght@300&display=swap");
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Libre Baskerville", serif;
  line-height: 1.2;
  color: var(--theme-500);
}
h1 + *, .h1 + *, h2 + *, .h2 + *, h3 + *, .h3 + *, h4 + *, .h4 + *, h5 + *, .h5 + *, h6 + *, .h6 + * {
  margin-top: 30px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: ease 0.2s;
  transition-property: color, background-color;
  cursor: pointer;
}
a:hover, a:active {
  color: var(--theme-100);
}

.rte {
  color: #707070;
}
.rte, .rte * {
  line-height: 1.4;
}
.rte a {
  color: var(--theme-100);
}
.rte ul {
  list-style: initial;
  padding-left: 20px;
}
.rte p:not(:last-child) {
  margin-bottom: 1em;
}
.rte strong {
  color: #303133;
}

.rte a {
  transition: color ease 0.2s;
}
.rte a:hover {
  opacity: 1;
  color: var(--theme-100);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  line-height: 19px;
}

strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

h1,
.h1 {
  margin-bottom: 0;
  font-size: 4rem;
}
@media screen and (max-width: 999px) {
  h1,
.h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  h1,
.h1 {
    font-size: 2rem;
  }
}

h2,
.h2 {
  font-size: 3rem;
}
@media screen and (max-width: 999px) {
  h2,
.h2 {
    font-size: 2.5rem;
  }
}

h3,
.h3 {
  font-weight: 400;
  font-size: 2rem;
}
@media screen and (max-width: 999px) {
  h3,
.h3 {
    font-size: 1.6rem;
  }
}

h4,
.h4 {
  font-size: 2rem;
}

h5,
.h5 {
  font-size: 1.7rem;
}

h6,
.h6 {
  font-size: 1.4rem;
}

html {
  margin: 0 !important;
  font-size: 10px;
  line-height: 1.5;
  box-sizing: border-box;
}
html.no-scroll {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: inherit;
  color: var(--theme-400);
  background-color: var(--theme-200);
}

.container {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (max-width: 599px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.container.containerWidth {
  margin: 0 auto;
  max-width: 1530px;
}
.container.containerWidthCenter {
  margin:auto;
  max-width: 1530px;
  padding-right: 150px;
  padding-left: 150px;
}

@media screen and (max-width: 668px) {
    .container.containerWidthCenter {
  padding-right: 30px;
  padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .container.containerWidth {
    max-width: 1530px;
  }
    .container.containerWidthCenter {
    max-width: 1530px;
  }
}

.containerWidth {
  margin: 0 auto;
  max-width: 1470px;
}
.containerWidthCenter {
  margin:auto;
  max-width: 1470px;
}
@media screen and (max-width: 599px) {
  .containerWidth {
    max-width: 1470px;
  }
    .containerWidthCenter {
    max-width: 1470px;
  }
}

@media screen and (max-width: 999px) {
  .container-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

.rte .btn,
.btn {
  display: inline-block;
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.24);
  padding: 15px 25px;
  background-color: var(--theme-100);
  color: #fff;
  font-size: 1.4rem;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition-duration: 0.15s;
  transition-property: background-color, opacity, box-shadow, color;
  transition-timing-function: cubic-bezier(0.75, 0.25, 0.25, 0.75);
  max-width: 100%;
}

.btn-2nd{
	color: var(--theme-contrast) !important;
}


.rte .btn-wrapper,
.btn-wrapper {
  padding-top: 4rem;
  margin-top: auto;
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 1000px) {
  .rte .btn-wrapper,
.btn-wrapper {
    padding-top: 5rem;
  }
}
.rte .btn:not([disabled]):hover,
.btn:not([disabled]):hover {
  color: #fff;
}
.rte .btn--green,
.btn--green {
  background-color: var(--primary);
  color: var(--primarytext);
}

.rte .btn--orange,
.btn--orange {
  background-color: #be8506;
}

.rte .btn--ghost,
.btn--ghost {
  background: none;
  box-shadow: none;
  border: 0.1rem solid #E0E0E0;
  color: var(--theme-contrast);
  padding: 1rem 3rem;
}
.rte .btn--white,
.btn--white {
  background: none;
  box-shadow: none;
  background: white;
  border: 0.1rem solid #E0E0E0;
  color: #303030;
  padding: 1rem 3rem;
}
.rte .btn--ghost:not([disabled]):hover,
.btn--ghost:not([disabled]):hover,
.rte .btn--white:not([disabled]):hover,
.btn--white:not([disabled]):hover {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
  background-color: var(--primary);
  color: #303030;
}
.rte .btn[disabled],
.btn[disabled] {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
.rte .btn--large,
.btn--large {
  width: auto;
  padding: 1.5rem 3rem;
}
.rte .btn--100,
.btn--100 {
  margin-top: 2rem;
  width: 100%;
}
.rte .btn > img,
.btn > img {
  height: 1.6rem;
}

img {
  max-width: 100%;
  width: 100%;
}
.rte img {
  width: initial;
}

.card {
  background-color: var(--theme-200);
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.17);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.card--alt {
  border-radius: 5px;
  box-shadow: 0px 0px 3px var(--theme-400);
  transition: box-shadow cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.1s;
}

textarea,
input:not(#datepickerField),
select:not(#datepickerField) {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 13px 14px;
  font-family: "Roboto", sans-serif;
  outline: none;
  font-size: 1.4rem;
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
  background-color: var(--theme-100);
  font-size: 16px !important;
  transition: 0.3s ease;
  transition-property: border-color;
  padding-right: 42px;
}
textarea:hover,
input:not(#datepickerField):hover,
select:not(#datepickerField):hover {
  border-color: #bababa;
}
textarea:focus,
input:not(#datepickerField):focus,
select:not(#datepickerField):focus {
  border-color: #000;
}
textarea[type=search]::-webkit-search-decoration, textarea[type=search]::-webkit-search-cancel-button, textarea[type=search]::-webkit-search-results-button, textarea[type=search]::-webkit-search-results-decoration,
input:not(#datepickerField)[type=search]::-webkit-search-decoration,
select:not(#datepickerField)[type=search]::-webkit-search-decoration,
input:not(#datepickerField)[type=search]::-webkit-search-cancel-button,
select:not(#datepickerField)[type=search]::-webkit-search-cancel-button,
input:not(#datepickerField)[type=search]::-webkit-search-results-button,
select:not(#datepickerField)[type=search]::-webkit-search-results-button,
input:not(#datepickerField)[type=search]::-webkit-search-results-decoration,
select:not(#datepickerField)[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
textarea::-webkit-input-placeholder,
input:not(#datepickerField)::-webkit-input-placeholder,
select:not(#datepickerField)::-webkit-input-placeholder {
  color: var(--theme-500);
}
textarea::-moz-placeholder,
input:not(#datepickerField)::-moz-placeholder,
select:not(#datepickerField)::-moz-placeholder {
  color: var(--theme-500);
}
textarea:-ms-input-placeholder,
input:not(#datepickerField):-ms-input-placeholder,
select:not(#datepickerField):-ms-input-placeholder {
  color: var(--theme-500);
}
textarea:-moz-placeholder,
input:not(#datepickerField):-moz-placeholder,
select:not(#datepickerField):-moz-placeholder {
  color: var(--theme-500);
}

button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Roboto", sans-serif;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: none;
}

select {
  padding-right: 40px;
  background-image: url("../assets/icons/arrow-down.svg");
  background-size: 14px;
  background-position: center right 14px;
  background-repeat: no-repeat;
}

.terms-con {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-left: 34px;
  color: var(--theme-500);
}
.terms-con p a {
  text-decoration: underline;
  font-size: 16px;
}
.terms-con input, .terms-con select {
  position: absolute;
  opacity: 0;
}

.checkmark {
  position: absolute;
  height: 20px;
  width: 20px;
  left: 0px;
  top: 0px;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
}

.terms-con input:checked ~ .checkmark, .terms-con select:checked ~ .checkmark {
  background-image: url(../assets/svgs/checkmark.svg);
  background-position: center center;
  background-size: 70%;
  background-repeat: no-repeat;
}

.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.grid.wrap {
  flex-wrap: wrap;
}
.grid:not(.no-gutter) {
  margin-left: -30px;
}
@media screen and (max-width: 599px) {
  .grid:not(.no-gutter) {
    margin-left: -30px;
  }
}
.grid:not(.no-gutter).wrap {
  margin-top: -30px;
}
@media screen and (max-width: 599px) {
  .grid:not(.no-gutter).wrap {
    margin-top: -30px;
  }
}
.grid:not(.no-gutter).wrap .grid__item {
  padding-top: 15px;
}
@media screen and (max-width: 599px) {
  .grid:not(.no-gutter).wrap .grid__item {
    padding-top: 15px;
  }
}
.grid:not(.no-gutter) .grid__item {
  padding-left: 15px;
}
@media screen and (max-width: 599px) {
  .grid:not(.no-gutter) .grid__item {
    padding-left: 15px;
  }
}
.grid .grid__item {
  width: 100%;
}

.index-section {
  padding-top: 36px;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .index-section {
    padding-top: 72px;
    padding-bottom: 36px;
  }
}
.index-section:first-child:not(.index-section-top) {
  padding-top: 0;
  border-top: 0;
}
.index-section-bottom {
  padding-top: 0;
}

input[type=number]::-webkit-inner-spin-button, select[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button,
select[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sections__headings {
  margin-bottom: 3rem;
}

body:not(.template-index) {
  padding-top: 80px;
  background-color: var(--theme-200);
}

@media screen and (max-width: 767px) {
  body.template-step .header__button:nth-child(2) {
    width: 100%;
    margin-right: -1px;
  }
  body.template-step .header__button:nth-child(2) a {
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  height: 80px;
}
.header__button {
  position: relative;
}
.st0{
	fill:var(--theme-500);
}
.header__button > a {
  position: relative;
  background-color: var(--theme-100);
  height: 100%;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__button:first-child {
  border-right: 1px solid var(--theme-400);
}

.header__button:nth-last-child(1) {
  border-left: 1px solid var(--theme-400);
}


.header__button + .header__button {
  margin-left: -1px;
}
.header__button img {
  max-height: 26px;
  max-width: 80%;
  width: auto;
  display: block;
}
.header__button .logo{
	max-height: 80px;
	max-width: 100%;
}
.header__button:nth-last-child(1) {
  margin-left: auto;
}
.header__button--back a > img {
  max-height: 20px;
}
.header__button:hover .header__dropdown {
  opacity: 1;
  pointer-events: auto;
}
.header__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 22rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background-color: #fff;
  border: 0.1rem solid #E0E0E0;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  border-top-right-radius: 0;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .header__dropdown {
    width: 100%;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
}
.header__dropdown li + li {
  border-top: 0.1rem solid #E0E0E0;
}
.header__dropdown .is-current > a,
.header__dropdown a:hover {
  background-color: #E0E0E0;
}
.header__dropdown a {
  display: block;
  padding: 1.4rem 2.5rem;
  font-size: 0.9em;
}
.header__cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 4.3rem;
  right: 1.8rem;
  border: 0.2rem solid var(--theme-100);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.5em;
  opacity: 0;
  transform: scale(0);
  transition: 0.3s ease;
  transition-property: opacity, transform;
}
.header__cart-count.is-active {
  opacity: 1;
  transform: scale(1);
}

.footer {
  background-color: var(--theme-100);
}
.footer__top {
  padding-top: 36px;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .footer__top {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.footer__header {
  margin-bottom: 30px;
}
.footer__content, .footer__content *, .footer__content a {
  color: var(--theme-500);
}
.footer__sub {
  border-top: 1px solid #E0E0E0;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
}
.footer__sub a {
  display: flex;
  align-items: center;
}
.footer__sub a img {
  margin-right: 6px;
  width: 15px;
}
.footer__sub, .footer__sub * {
  color: var(--theme-500);
}
.footer .rte .btn {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer .grid__item {
    max-width: 360px;
  }
  .footer .grid__item:nth-child(1n+2) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .footer .grid__item {
    width: 30%;
  }
}

.hero {
  min-height: 100vh;
  padding-top: 50px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 36px;
}
@media screen and (min-width: 600px) {
  .hero {
    padding-top: 80px;
  }
}
.hero__card {
  padding: 50px;
  width: 100%;
  max-width: 500px;
}
.hero__card .h2 {
  margin-top: 0;
  margin-bottom: 30px;
}
.hero__card--buttons {
  margin-top: 30px;
  display: flex;
}
@media screen and (max-width: 599px) {
  .hero__card--buttons {
    flex-direction: column;
  }
}
.hero__card--buttons .btn {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .hero__card--buttons .btn + .btn {
    margin-top: 10px;
  }
}
@media screen and (min-width: 600px) {
  .hero__card--buttons .btn + .btn {
    margin-left: 30px;
  }
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .hero {
    padding-bottom: 72px;
  }
}
.timeline__steps {
  display: flex;
  position: relative;
}
.timeline__step {
  width: 100%;
  text-align: center;
  color: #E0E0E0;
  position: relative;
}
.timeline__step:hover p {
  color: #000;
}
.timeline__step a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.timeline__step div {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--theme-400);
  display: inline-block;
  position: relative;
  background-color: var(--theme-200);
  transition: border-color cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.2s;
}
.timeline__step .check {
  fill-opacity: 0;
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  stroke: var(--primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.2s;
}

.timeline__step div:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 0px;
  height: 0px;
  border-radius: 999px;
  transition: all cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.14s;
  transition-property: width, height, top, left;
  transition-delay: 0.12s;
}
.timeline__step p {
  color: inherit;
  font-size: 1.4rem;
  transition: color ease 0.1s;
}
.timeline__bar {
  position: absolute;
  width: 100%;
  height: 1px;
  top: 15px;
  left: 0;
  background-color: #E0E0E0;
  z-index: -1;
}
.timeline__bar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--primary);
  transition: width cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.2s;
}
.timeline__bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 50%;
  background-color: #E0E0E0;
}
.timeline[data-step="1"] .timeline__step:nth-child(-1n+1) div {
  border-color: var(--primary);
}
.timeline[data-step="1"] .timeline__step:nth-child(-1n+1) .check {
  opacity: 1;
}
.timeline[data-step="1"] .timeline__step:nth-child(-1n+1) p {
  color: var(--theme-500);
}
.timeline[data-step="1"] .timeline__step:nth-child(2) div:after {
  background-color: var(--primary);
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
}
.timeline[data-step="1"] .timeline__step:nth-child(2) p {
  color: var(--theme-500);
}
.timeline[data-step="2"] .timeline__step:nth-child(-1n+2) div {
  border-color: var(--primary);
}
.timeline[data-step="2"] .timeline__step:nth-child(-1n+2) .check {
  opacity: 1;
}
.timeline[data-step="2"] .timeline__step:nth-child(-1n+2) p {
  color: var(--theme-500);
}
.timeline[data-step="2"] .timeline__step:nth-child(3) div:after {
  background-color: var(--primary);
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
}
.timeline[data-step="2"] .timeline__step:nth-child(3) p {
  color: var(--theme-500);
}
.timeline[data-step="3"] .timeline__step:nth-child(-1n+3) div {
  border-color: var(--primary);
}
.timeline[data-step="3"] .timeline__step:nth-child(-1n+3) .check {
  opacity: 1;
}
.timeline[data-step="3"] .timeline__step:nth-child(-1n+3) p {
  color: var(--theme-500);
}
.timeline[data-step="3"] .timeline__step:nth-child(4) div:after {
  background-color: var(--primary);
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
}
.timeline[data-step="3"] .timeline__step:nth-child(4) p {
  color: var(--theme-500);
}
.timeline[data-step="3"] .timeline__bar:after {
  width: calc(100% / 10 * 5);
}
.timeline[data-step="4"] .timeline__step:nth-child(-1n+4) div {
  border-color: var(--primary);
}
.timeline[data-step="4"] .timeline__step:nth-child(-1n+4) .check {
  opacity: 1;
}
.timeline[data-step="4"] .timeline__step:nth-child(-1n+4) p {
  color: var(--theme-500);
}
.timeline[data-step="4"] .timeline__step:nth-child(5) div:after {
  background-color: var(--primary);
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
}
.timeline[data-step="4"] .timeline__step:nth-child(5) p {
  color: var(--theme-500);
}
.timeline[data-step="4"] .timeline__bar:after {
  width: calc(100% / 10 * 7);
}
.timeline[data-step="5"] .timeline__step:nth-child(-1n+5) div {
  border-color: var(--primary);
}
.timeline[data-step="5"] .timeline__step:nth-child(-1n+5) .check {
  opacity: 1;
}
.timeline[data-step="5"] .timeline__step:nth-child(-1n+5) p {
  color: var(--theme-500);
}
.timeline[data-step="5"] .timeline__step:nth-child(6) div:after {
  background-color: var(--primary);
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
}
.timeline[data-step="5"] .timeline__step:nth-child(6) p {
  color: var(--theme-500);
}
.timeline[data-step="5"] .timeline__bar:after {
  width: calc(100% / 10 * 9);
}
.timeline[data-step="6"] .timeline__step:nth-child(-1n+6) div {
  border-color: var(--primary);
}
.timeline[data-step="6"] .timeline__step:nth-child(-1n+6) .check {
  opacity: 1;
}
.timeline[data-step="6"] .timeline__step:nth-child(-1n+6) p {
  color: var(--theme-500);
}
.timeline[data-step="6"] .timeline__step:nth-child(7) div:after {
  background-color: var(--primary);
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
}
.timeline[data-step="6"] .timeline__step:nth-child(7) p {
  color: var(--theme-500);
}
.timeline[data-step="6"] .timeline__bar:after {
  width: calc(100% / 12 * 11);
}

.text-hero {
  max-width: 350px;
  color:var(--theme-500);
}
.text-hero-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .text-hero-wrapper {
    flex-direction: column;
  }
}
.text-hero__header {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}
.text-hero__header-logo {
  margin-right: 4rem;
}
.text-hero__header-logo > img {
  max-width: 10rem;
}
.text-hero__header ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .text-hero__header ul {
    margin-left: 1.5rem;
    flex: 1;
  }
}
.text-hero__header ul li {
  width: 100%;
  font-size: 1.6rem;
  color: var(--theme-500);
}
@media screen and (min-width: 768px) {
  .text-hero__header ul li {
    width: 50%;
  }
}
.text-hero__header ul li span {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  vertical-align: text-top;
  color: var(--theme-500);
}
.text-hero__header ul li img {
  max-width: 1.5rem;
  margin-right: 1rem;
}
.text-hero__column {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .text-hero__column {
    width: 55%;
  }
}
.text-hero__content {
  display: flex;
  flex-flow: column;
  padding-bottom: 0;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .text-hero__content {
    width: 41.6666666667%;
  }
}
.text-hero__content-inner {
  flex: 1;
  padding: 3rem;
  border-radius: 5px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 1000px) {
  .text-hero__content-inner {
    padding: 3rem 4rem;
  }
}

.overview__inner {
  display: flex;
}
@media screen and (min-width: 768px) {
  .overview__inner {
    flex-direction: column;
  }
}
.overview__card {
  padding: 20px;
  max-width: 170px;
  position: relative;
  background-color: var(--theme-200);
}
@media screen and (max-width: 999px) {
  .overview__card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1000px) {
  .overview__card {
    max-height: 80px;
  }
}
.template-menucard .overview__card {
  max-width: 130px;
}
@media screen and (min-width: 1000px) {
  .template-menucard .overview__card {
    max-height: 60px;
  }
}

.overview__card:after {
	display:none;
  content: attr(data-open);
  position: absolute;
  left: -8px;
  top: -8px;
  border-radius: 5px;
  color: #fff;
  font-size: 8px;
  padding: 3px 5px 1px;
  background-color: #303030;
} 
.overview__resume {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .overview__resume {
    margin-top: 13px;
  }
}
.overview__resume li {
  color:var(--theme-400);
  display: flex;
  align-items: center;
  font-weight: 300;
}
.overview__resume li + li {
  margin-top: 2px;
}
.overview__resume li img {
  width: 13px;
  margin-right: 10px;
  margin-top: -2px;
}

@media screen and (max-width: 767px) {
  .grid__item > div.overlay-active .restaurants__grid--image {
    -webkit-transform: none;
    -moz-transform: none;
  }
}
.restaurants__grid .grid__item {
  width: 50%;
}
@media screen and (min-width: 1100px) {
  .restaurants__grid .grid__item {
    width: 33%;
  }
}
@media screen and (min-width: 1500px) {
  .restaurants__grid .grid__item {
    width: 25%;
  }
}
.restaurants__grid .grid__item > div {
  position: relative;
}
@media screen and (min-width: 600px) {
  .grid__item > div:not(.overlay-active):hover .restaurants__grid--image .bg {
    transform: scale(1.06);
  }
}
.restaurants__grid [data-choose-restaurant]:not(.overlay-active) {
  cursor: pointer;
}
.restaurants__grid [data-close-overlay] {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  padding: 10px;
  cursor: pointer;
  pointer-events: all;
}
.restaurants__grid--overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .restaurants__grid--overlay {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .restaurants__grid--overlay {
    margin-top: 80px;
    height: calc(100% - 80px);
    background-color: rgba(0, 0, 0, 0.8);
  }
}
.restaurants__grid--overlay .rte {
  margin-top: 12px;
  font-weight: 300;
}
.restaurants__grid--overlay p {
  color: #fff;
}
.restaurants__grid--overlay p:not(.rte) {
  padding-right: 30px;
}
.restaurants__grid--overlay p.rte {
  flex: 1 0 auto;
}
.restaurants__grid--overlay--buttons {
  align-self: flex-end;
  width: 100%;
}
.restaurants__grid--overlay--buttons .btn {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
}
.restaurants__grid--overlay--buttons .btn span:nth-child(2) {
  font-size: 12px;
  text-transform: none;
  opacity: 0.5;
  display: block;
  margin-top: -6px;
}
.restaurants__grid--overlay--buttons .btn + .btn {
  margin-top: 10px;
}
.restaurants__grid--overlay--buttons .btn > * {
  pointer-events: none;
}
.restaurants__grid--image {
  position: relative;
  padding-bottom: 100%;
}
.restaurants__grid--image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000;
  opacity: 0.2;
}
.restaurants__grid--image .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
  transform: scale(1);
  transition: transform cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.2s;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
  outline: none;
}
.restaurants__grid--image .logo {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  object-fit: contain;
  z-index: 1;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
  outline: none;
}
.restaurants__grid--info {
  margin-top: 24px;
  padding-bottom: 20px;
}
.restaurants__grid--info .title {
  font-size: 1.8rem;
  color: var(--theme-500);
}
@media screen and (min-width: 768px) {
  .restaurants__grid--info .title {
    font-size: 2rem;
  }
}
.restaurants__grid--info .subtitle {
  position: relative;
  color: #cbcbcb;
  display: flex;
  align-items: center;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .restaurants__grid--info .subtitle {
    font-size: 14px;
  }
}
.restaurants__grid--info .subtitle:before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background-image: url(../assets/icons/tid.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.forudbestil__legend {
  text-align: center;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .forudbestil__legend {
    width: calc(100% - 20px);
    left: 10px;
    bottom: 1px;
    padding: 2px 20px 5px;
    transform: translateY(50%);
  }
}
@media screen and (min-width: 600px) {
  .forudbestil__legend {
    right: 30px;
    bottom: -32px;
    padding: 20px 30px;
  }
}
.forudbestil__legend > p {
  padding-top: 6px;
  font-size: 14px;
  color: #cbcbcb;
  display: inline-block;
}
.forudbestil__legend > p + p {
  padding-left: 30px;
}
.forudbestil__legend > p:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: -2px;
  margin-right: 10px;
}
.forudbestil__legend > p.unavailable:before {
  background-color: #cbcbcb;
}
.forudbestil__legend > p.available:before {
  background-color: var(--primary);
}
.forudbestil__legend > p.filled:before {
  background-color: #E01234;
}
.forudbestil__legend > p.reserved:before {
  background-color: #eedc07;
}

.forudbestil__date {
  cursor: pointer;
  position: relative;
  color: var(--theme-400);
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
  outline: none;
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
}
.forudbestil__date span {
  color: var(--theme-500);
}
.forudbestil__date img {
  width: 12px;
  margin-bottom: 2px;
  margin-left: 9px;
}
.forudbestil__date input, .forudbestil__date select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}
.forudbestil__grid-wrapper {
  position: relative;
  padding: 30px;
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .forudbestil__grid-wrapper {
    padding: 40px;
    padding-bottom: 80px;
  }
}
.forudbestil__grid-wrapper + .btn {
  margin-top: 76px;
}
@media screen and (min-width: 768px) {
  .forudbestil__grid-wrapper + .btn {
    margin-top: 72px;
  }
}
@media screen and (min-width: 600px) {
  .forudbestil__grid {
    margin-left: -40px;
    margin-top: -40px;
  }
  .forudbestil__grid:not(.no-gutter).wrap .grid__item {
    padding-left: 20px;
    padding-top: 20px;
  }
}
.forudbestil__grid [data-timestamp] {
  position: relative;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 12px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
  outline: none;
  transition: background cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.1s, color cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.1s, box-shadow cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.1s;
}
.forudbestil__grid [data-timestamp].available {
  cursor: pointer;
}
.forudbestil__grid [data-timestamp].available:hover {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.29);
}
@media screen and (min-width: 600px) {
  .forudbestil__grid [data-timestamp] {
    font-size: 28px;
    padding: 12px;
  }
}
.forudbestil__grid [data-timestamp].selected {
  background: var(--primary);
  color: #fff !important;
}
.forudbestil__grid [data-timestamp].selected svg {
  fill: #fff !important;
}
.forudbestil__grid [data-timestamp] svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  transition: fill cubic-bezier(0.75, 0.25, 0.25, 0.75) 0.1s;
}
.forudbestil__grid [data-timestamp]:after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
}
.forudbestil__grid [data-timestamp].unavailable {
  color: #cbcbcb;
}
.forudbestil__grid [data-timestamp].unavailable svg {
  fill: #cbcbcb;
}
.forudbestil__grid [data-timestamp].unavailable:after {
  background-color: #cbcbcb;
}
.forudbestil__grid [data-timestamp].available {
  color: var(--theme-contrast);
}
.forudbestil__grid [data-timestamp].available svg {
  fill: #93B89A;
}
.forudbestil__grid [data-timestamp].filled {
  color: #E01234;
}
.forudbestil__grid [data-timestamp].filled svg {
  fill: #E01234;
}
.forudbestil__grid [data-timestamp].filled:after {
  background-color: #E01234;
}
.forudbestil__grid [data-timestamp].reserved {
  color: #eedc07;
}
.forudbestil__grid [data-timestamp].reserved svg {
  fill: #eedc07;
}

.forudbestil__grid .grid__item {
  width: 33.33333%;
}
@media screen and (min-width: 800px) {
  .forudbestil__grid .grid__item {
    width: calc(100% / 3);
  }
}
@media screen and (min-width: 1000px) {
  .forudbestil__grid .grid__item {
    width: calc(100% / 4);
  }
}
@media screen and (min-width: 1200px) {
  .forudbestil__grid .grid__item {
    width: calc(100% / 5);
  }
}
@media screen and (min-width: 1300px) {
  .forudbestil__grid .grid__item {
    width: calc(100% / 6);
  }
}

.menukort__sorting {
  cursor: pointer;
  position: relative;
  color: #000;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
  outline: none;
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
}
.menukort__sorting span {
  color: var(--theme-500);
}
.menukort__sorting img {
  width: 12px;
  margin-bottom: 2px;
  margin-left: 9px;
}

.no-gutter {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.flex {
  display: flex;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--justify {
  justify-content: space-between;
}
.flex--v-center {
  align-items: center;
}
.flex--center {
  align-items: center;
  justify-content: center;
}

form a:not(.btn) {
  text-decoration: underline;
}
form fieldset {
  border: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
}
form label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--theme-500);
  align-items: center;
  font-size: 2rem;
  line-height: 1.3;
}
form label input[type=checkbox], form label select[type=checkbox] {
  position: absolute;
  left: -999rem;
  z-index: -9999;
}
form label input[type=checkbox]:checked + .form-checkbox, form label select[type=checkbox]:checked + .form-checkbox {
  background: var(--primary) url("../assets/icons/check-negative.svg") no-repeat 50%/70%;
}
form label .form-checkbox {
  width: 2rem;
  height: 2rem;
  border-radius: 3.3333333333px;
  display: inline-block;
  border: 0.1rem solid #c7c7c7;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
  margin-right: 1rem;
  transition: background-color 0.3s ease;
}
form label small {
  font-size: 1.5rem;
  color: var(--theme-500);
}
form textarea,
form select,
form input {
  width: 100%;
  max-width: 100%;
}
form textarea[type=checkbox],
form select[type=checkbox],
form input[type=checkbox] {
  width: auto;
}
form textarea {
  min-height: 10rem;
  resize: vertical;
}
@media screen and (max-width: 999px) {
  form .input-item + .input-item {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1000px) {
  form .input-item + .input-item {
    margin-left: 30px;
  }
}
form .input-item {
  position: relative;
  display: flex;
  flex-flow: column;
  flex: 1 1 100%;
}
@media screen and (min-width: 1000px) {
  form .input-item {
    flex: 1;
  }
}
@media screen and (min-width: 1000px) {
  form .input-item.small {
    flex: 0 1 25%;
  }
}
@media screen and (min-width: 1000px) {
  form .input-item.medium {
    flex: 0 1 35%;
  }
}
form .input-item-inner {
  position: relative;
}
form .input-item-inner input, form .input-item-inner select {
  padding-right: 11rem !important;
}
form .input-item-inner button {
  position: absolute;
  top: 0.5rem;
  bottom: 0.7rem;
  right: 0.7rem;
  width: auto;
  padding: 0.2rem 1rem 0.4rem;
  width: 9rem;
}
form .input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .input-group + .input-group {
  margin-top: 25px;
}
form select {
  color: var(--theme-500);
}

.form__expand {
  width: 2rem;
  height: 2rem;
  padding: 2rem 0;
  cursor: pointer;
  position: relative;
}
.form__expand:hover::before, .form__expand:hover::after {
  width: 2.5rem;
}
.form__expand::before, .form__expand::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.2rem;
  background-color: #303030;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: opacity, transform, width;
}
.is-open .form__expand::before, .is-open .form__expand::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.form__expand::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.is-open .form__expand::after {
  opacity: 0;
}
.form__expandable {
  height: 0;
  overflow: hidden;
  transition: 0.7s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: opacity, height;
  border-top: 0.1rem solid #E0E0E0;
}
.form__expandable .form__row:first-child {
  border-top: none;
}
.form__header {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .form__header {
    justify-content: center;
  }
}
.form__header img {
  max-width: 20rem;
  max-height: 9rem;
  width: auto;
}
@media screen and (min-width: 1000px) {
  .form__header img {
    max-width: 15rem;
  }
}
.form__row {
  position: relative;
  padding: 2rem;
  border-top: 0.1rem solid #E0E0E0;
}
.form__row.expand {
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}
@media screen and (max-width: 999px) {
  .form__row.expand {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1000px) {
  .form__row.expand {
    min-height: 20rem;
  }
}
.form__row label + label {
  margin-top: 1rem;
}
.form__row label:hover span::before {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
}
.form__row input[type=radio], .form__row select[type=radio] {
  position: absolute;
  left: -9999rem;
  z-index: -9999;
}
.form__row input[type=radio]:checked + span::before, .form__row select[type=radio]:checked + span::before {
  background: var(--primary) url(../assets/icons/check-negative.svg) no-repeat 50%/60%;
}
.form__row input[type=radio] + span, .form__row select[type=radio] + span {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
}
.form__row input[type=radio] + span::before, .form__row select[type=radio] + span::before {
  content: "";
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  max-width: 3rem;
  min-height: 3rem;
  max-height: 3rem;
  border: 0.1rem solid var(--primary);
  margin-right: 2rem;
  display: inline-block;
  transition: 0.3s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: background-color, box-shadow;
}
.form__row-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.form__row-header.active {
  background: var(--primary)26;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .form__row-header {
    flex-flow: column;
    align-items: flex-start;
  }
  .form__row-header .form__row-buttons {
    width: 100%;
    margin-top: 1.5rem;
  }
  .form__row-header .form__row-buttons label {
    flex-grow: 1;
  }
}
.form__row-header > span {
  flex: 1;
}
.form__row-footer {
  padding-top: 2rem;
}
.form__row-content {
  height: 0;
  overflow: hidden;
  transition: 0.7s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: opacity, height;
}

.CartExpand{
	display:block;
	overflow:hidden;
	border-bottom: 1px solid #00000045;
  margin: 10px 0 10px 2rem;
}
.form__row-content-inner {
  display: flex;
  flex-flow: column;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 0.1rem solid #e3e3e3;
}
.form__row-column {
  flex: 1;
}
@media screen and (max-width: 999px) {
  .form__row-column {
    flex: 1 0 100%;
  }
  .form__row-column + .form__row-column {
    margin-top: 3rem;
  }
}
.form__row-column p {
  margin-bottom: 0.4rem;
  padding-top: 0.2rem;
}
@media screen and (min-width: 1000px) {
  .form__row-column {
    width: 50%;
  }
}
.form__row-column-item {
  color: var(--theme-500);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .form__row-column-item {
    flex-flow: column;
  }
}
.form__row-column-item + .form__row-column-item {
  margin-top: 1.5rem;
}
.form__row-column-title {
  color: var(--theme-500);
  padding-right: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .form__row-column-title {
    flex-basis: 35%;
  }
}
@media screen and (min-width: 1000px) {
  .form__row-column-description {
    flex: 1;
    flex-basis: 55%;
  }
}
.form__row-buttons {
  display: flex;
}
.form__row-buttons label {
  margin: 0 !important;
  border-radius: 5px;
  overflow: hidden;
}

.form__row-display {
	display: flex;
  align-items: center;
  justify-content: center;
	font-size: 1.4rem;
	font-family: "Work Sans", sans-serif;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
  border: 0.1rem solid #E0E0E0;
  border-left: none;
  width: 3rem;
}

.form__row-buttons.is-multiple > :first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.form__row-buttons.is-multiple > :last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.form__row-buttons input:checked + .btn, .form__row-buttons select:checked + .btn {
  background-color: var(--primary);
  color: #fff;
}
.form__row-buttons input + .btn, .form__row-buttons select + .btn {
  pointer-events: none;
  border-radius: 0;
  border: none;
}
.form__row-buttons button {
  flex-grow: 1;
  white-space: nowrap;
}

.from__row-buttons .is-multiple{
	padding-top:10px;
}

.form__row-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .form__row-list {
    flex-flow: column;
  }
}
.form__row-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--theme-500);
  margin-right: 3rem;
  font-weight: 300;
}
.form__row-list li span {
  font-size: 1.2rem;
  margin-right: 0.6rem;
  color: var(--theme-400);
}
.form__row-list li img {
  width: 1.3rem;
  margin-right: 1rem;
}
.form__row-meta {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 2rem;
  padding:5px;
}
.form__row-meta-inner {
  display: flex;
  flex-flow: column;
}
.form__row-meta-inner label {
  margin-bottom: 0;
}

.form__row-inner-item {
  display: inline-flex;
  flex-direction: column;
}

.form__row-inner-item .price {
  color: var(--primary);
  margin-top: 0.25rem;
}

.menucard {
  /**
   * Dishes
   */
  /**
   * Cart
   */
}
.menucard__item + .menucard__item {
  margin-top: 3rem;
}

.menucard__item-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
  z-index: 1;
}
.menucard__item-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 999px) {
  .menucard__item-inner {
    flex-flow: column;
    justify-content: space-between;
    flex-grow: 1;
  }
}
@media screen and (min-width: 1000px) {
  .menucard__item-inner {
    margin-top: auto;
  }
}
.menucard__item-inner-wrapper {
  position: relative;
  display: flex;
  flex-flow: column;
  padding: 3rem;
  min-height: 30rem;
  border-radius: 5px;
  overflow: hidden;
  z-index: 5;
  color: #fff;
  cursor: pointer;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.17);
}
.menucard__item-inner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.14); */
  z-index: 2;
}
.menucard__item-header {
  width: 100%;
  background: #ffffffcc;
  border-radius: 2px;
}
@media screen and (min-width: 1000px) {
  .menucard__item-header {
    max-width: 50%;
    margin-left: 2.5rem;
  }
}
.menucard__item-title {
  font-size: 2rem;
  color: black;
  padding: 10px 10px 6px 10px;
  font-weight: bold;

}
.menucard__item-description {
  color: black;
  padding: 0px 10px 10px 10px;
  font-size: 14px;
}
.menucard__item-trigger {
  width: 6rem;
  height: 6rem;
  background-color: var(--theme-200);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 5px;
}
.menucard__item-trigger:hover::before, .menucard__item-trigger:hover::after {
  width: 2.5rem;
}
.menucard__item-trigger::before, .menucard__item-trigger::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.2rem;
  background-color: var(--theme-500);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: opacity, transform, width;
}
.is-open .menucard__item-trigger::before, .is-open .menucard__item-trigger::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.menucard__item-trigger::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.is-open .menucard__item-trigger::after {
  opacity: 0;
}
@media screen and (min-width: 1000px) {
  .menucard__item-trigger {
    margin-top: auto;
  }
}
.menucard__dishes {
  height: 0;
  overflow: hidden;
  transition: 0.7s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: opacity, height;
}
.menucard__dish-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (max-width: 1000px) {
  .menucard__dish-controls {
    flex-direction: row;
  }

  .menucard__dish {
    flex-direction: column;
  }
}

.menucard__dish {
  padding-right: 0;
  display: flex;
  cursor: pointer;
}
.menucard__dish.is-open {
  cursor: default;
}
.menucard__dish-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.menucard__dish-wrapper + .menucard__dish-wrapper {
  border-top: 0.1rem solid #E0E0E0;
}
.menucard__dish-trigger {
  width: 4rem;
  height: 4rem;
  margin-top: 1.5rem;
  position: relative;
}
.menucard__dish-trigger:hover::before, .menucard__dish-trigger:hover::after {
  width: 2.5rem;
}
.menucard__dish-trigger::before, .menucard__dish-trigger::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.2rem;
  background-color: #303030;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: opacity, transform, width;
}
.is-open .menucard__dish-trigger::before, .is-open .menucard__dish-trigger::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.menucard__dish-trigger::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.is-open .menucard__dish-trigger::after {
  opacity: 0;
}
@media screen and (max-width: 999px) {
  .menucard__dish-trigger {
    display: none;
  }
}
.menucard__dish-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 25rem;
  max-height: 30rem;
  transition: width 0.5s cubic-bezier(0.75, 0.25, 0.25, 0.75);
}
@media screen and (max-width: 999px) {
  .menucard__dish-image {
    display: none;
  }
}
.is-open .menucard__dish-image {
  width: 30%;
}
.menucard__dish-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}
.menucard__dish-content {
  flex-grow: 1;
}
@media screen and (min-width: 1000px) {
  .menucard__dish-content {
    padding-left: 3rem;
  }
}
.menucard__dish-content-wrapper {
  padding: 2rem;
  align-self: center;
  display: flex;
  flex-basis: 100%;
}
@media screen and (min-width: 1000px) {
  .menucard__dish-content-wrapper {
    flex-basis: 70%;
  }
}
.menucard__dish-header {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  margin-bottom: 0.5rem;
}
.menucard__dish-header-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 0.5rem;
}
.menucard__dish-header-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 1/1;
  max-height: 10rem;
}
.menucard__dish-header-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}
.menucard__dish-title {
  margin: 0;
}
.menucard__dish-description {
  margin-top: 0;
  color: var(--theme-500);
}
.menucard__dish-description-hidden {
  height: 0;
  overflow: hidden;
  transition: 0.7s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: opacity, height;
}
.menucard__dish-price {
  color: var(--green-400);
}

.menucard__dish-price.soldout{
  text-decoration:line-through;
  text-decoration-color:black;
}
.menucard__dish-form {
  margin-top: 2rem;
}
.menucard__dish-form button[type=submit] {
  margin-top: 2rem;
}
.menucard__dish-form-wrapper {
  height: 0;
  overflow: hidden;
  transition: 0.7s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: opacity, height;
}
.menucard-cart {
  max-height:93%;
  position: fixed;
  z-index: 5000;
  bottom: 0;
  left: 85%;
  top: 80px;
  width: 15%;
  height:100%;
  overflow-y: auto;
  background-color: #fff;
  padding: 3rem 0;
  box-shadow: 0.3rem 0.2rem 1rem rgba(0, 0, 0, 0.4);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.75, 0.25, 0.25, 0.75);
}
.menucard-cart.is-active {
  transform: translateY(0);
}
.menucard-cart__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 999px) {
  .menucard-cart__inner {
    flex-flow: column;
  }
}

@media screen and (max-width: 768px) {
  .menucard-cart {
    display: none;
  }
  .overview {
  	margin-top: 20px;
  }
}
.menucard-cart__data {
  display: block;
  flex-wrap: wrap;
  align-items: center;
  top: 85%;
  padding-top:10px;
}
@media screen and (max-width: 999px) {
  .menucard-cart__data {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .menucard-cart__data .btn {
    width: 100%;
  }
}
.menucard-cart__data-total {
  font-size: 3rem;
  margin-right: 2.5rem;
  color: var(--theme-500);
  font-family: "Libre Baskerville", serif;
}
@media screen and (max-width: 999px) {
  .menucard-cart__data-total {
    display: none;
  }
}
.menucard-cart__items {
  max-width: 100%;
}

.remove{
	cursor:pointer;
}

.recommended {
  border-top: dashed 0.2rem #E0E0E0;
}
.recommended__dishes {
  height: auto;
}

.confirmation__inner {
  display: flex;
  flex-direction: column;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  align-items: center;
}
.confirmation__item {
  width: 100%;
  padding: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .confirmation__item {
    width: 58.3333333333%;
  }
}
.confirmation__item-inner {
  padding: 2rem 4rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
  border-radius: 5px;
}
.confirmation__item ul {
  display: flex;
  flex-wrap: wrap;
}
.confirmation__item ul li {
  margin-right: 2rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
.confirmation__item ul li img {
  max-width: 1.5rem;
  margin-right: 1rem;
}
.confirmation__message {
  align-self: center;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.confirmation__message-text {
  margin-left: 2.5rem;
  text-align: left;
}
.confirmation__message-text h2 {
  margin: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 999px) {
  .confirmation__message {
    margin-bottom: 2.5rem;
  }
}
.confirmation__message-inner {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .confirmation__message-inner {
    width: 60%;
  }
}
.confirmation__message-icon {
  max-width: 6rem;
  max-height: 6rem;
}
@media screen and (min-width: 1000px) {
  .confirmation__message-icon {
    max-width: 15rem;
    max-height: 15rem;
  }
}
.confirmation__message-description {
  font-size: 1.4rem;
  color: var(--theme-500);
}

.page__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1000px) {
  .page__header {
    margin-bottom: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .page__header {
    margin-bottom: 10rem;
  }
}
.page__content .page__header {
  margin-bottom: 0;
}
.page__content .page__header + * {
  margin-top: 3rem;
}
@media screen and (min-width: 1000px) {
  .page__content .page__header + * {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .page__content .page__header + * {
    margin-top: 10rem;
  }
}
.page__header-hero > img {
  max-width: 20rem;
}
.page__header-content {
  margin-right: 3rem;
  margin-bottom: 1.5rem;
}
.page__header-title {
  margin: 0;
}
.page__header-description {
  max-width: 40rem;
  color: var(--theme-500);
  margin-top: 3rem;
}
.page__content {
  padding: 5rem 4rem;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
  border-radius: 5px;
}
@media screen and (min-width: 1000px) {
  .page__content {
    padding: 10rem 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .page__content {
    padding: 14rem 1.5rem;
  }
}
.page__content + .page__content {
  margin-top: 2.5rem;
}
@media screen and (min-width: 1000px) {
  .page__content + .page__content {
    margin-top: 5rem;
  }
}
.page__content-inner {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 1000px) {
  .page__content-inner {
    width: 66.6666666667%;
  }
}

.orders__item {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
  border-radius: 5px;
  padding: 1rem 3rem 3rem;
}
@media screen and (min-width: 1200px) {
  .orders__item {
    padding: 4rem 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .orders__item {
    padding: 7rem 12rem;
  }
}
.orders__item + .orders__item {
  margin-top: 2rem;
}
@media screen and (min-width: 1000px) {
  .orders__item + .orders__item {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .orders__item + .orders__item {
    margin-top: 6rem;
  }
}
.orders__item-price {
  transition: 0.3s ease;
  transition-property: opacity, transform;
}
@media screen and (max-width: 999px) {
  .orders__item-price {
    margin-top: 1rem;
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .orders__item-price {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.is-open .orders__item-price {
  opacity: 0;
  transform: translateY(0);
}
@media screen and (max-width: 999px) {
  .orders__item-price--desktop {
    display: none;
  }
}
.orders__item-price--mobile {
  transition: height 0.5s ease;
}
@media screen and (min-width: 1000px) {
  .orders__item-price--mobile {
    display: none;
  }
}
.is-open .orders__item-price--mobile {
  height: 0;
  overflow: hidden;
}
.orders__item .form__row:last-child {
  padding-bottom: 0;
}
.orders__item .form__header {
  justify-content: space-between;
}

.sorting__wrapper {
  position: relative;
  z-index: 500;
  width: 30rem;
}
.sorting__header {
  padding: 1.5rem 0;
  position: relative;
  z-index: 5;
  color: #303030;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: padding 0.6s ease;
}
.sorting__header > img {
  width: 1rem;
  margin-left: 1rem;
}
.is-open .sorting__header {
  padding-left: 3rem;
}
.sorting__inner {
  padding: 3rem;
  padding-top: 6rem;
  max-width: 100%;
  min-width: 30rem;
  width: 100%;
  border: 0.1rem solid #F0F0F0;
  border-radius: 5px;
}
.sorting__inner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: 0.6s cubic-bezier(0.75, 0.25, 0.25, 0.75);
  transition-property: height, opacity;
  backdrop-filter: blur(1rem);
  background-color: rgba(255, 255, 255, 0.7);
}
.is-open .sorting__inner-wrapper {
  opacity: 1;
}
.sorting__items {
  display: flex;
  flex-direction: column;
}
.sorting__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.4rem;
}
.sorting__item + .sorting__item {
  margin-top: 0.7rem;
}
.sorting__item > input, .sorting__item > select {
  position: absolute;
  z-index: -9999;
  left: -9999px;
}
.sorting__item > input:checked, .sorting__item > select:checked {
  background: black;
}
.sorting__item > input:checked + span::before, .sorting__item > select:checked + span::before {
  border-color: var(--primary);
  background: var(--primary) url(../assets/icons/check-negative.svg) no-repeat 50%/60%;
}
.sorting__item > span {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #303030;
}
.sorting__item > span::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid var(--theme-500);
  display: inline-block;
  margin-right: 1rem;
  border-radius: 2.9411764706px;
  background-color: #fff;
  transition: 0.4s ease;
  transition-property: border-color, background-color;
}

.datepicker {
  display: none;
}
.datepicker.active {
  display: block;
}

.datepicker-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  padding-top: 4px;
}
.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.datepicker-picker {
  display: inline-block;
  border-radius: 4px;
  background-color: #fff;
}
.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.datepicker-picker span {
  display: block;
  flex: 1;
  border: 0;
  border-radius: 4px;
  cursor: default;
  text-align: center;
  -webkit-touch-callout: none;
  user-select: none;
}

.datepicker-main {
  padding: 2px;
}

.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: var(--theme-100);
}

.datepicker-grid, .datepicker-view .days-of-week, .datepicker-view, .datepicker-controls {
  display: flex;
}

.datepicker-grid {
  flex-wrap: wrap;
}

.datepicker-view .days .datepicker-cell, .datepicker-view .dow {
  flex-basis: 14.2857142857%;
}

.datepicker-view.datepicker-grid .datepicker-cell {
  flex-basis: 25%;
}

.datepicker-cell, .datepicker-view .week {
  height: 2.25em;
  line-height: 2.25em;
}

.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  background-color: whitesmoke;
  padding: 0.375em 0.75em;
  text-align: center;
  font-weight: 700;
}

.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}
.datepicker-controls .button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fff;
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: #363636;
  font-size: 1em;
}
.datepicker-controls .button:focus, .datepicker-controls .button:active {
  outline: none;
}
.datepicker-controls .button:hover {
  border-color: var(--theme-500);
  color: #363636;
}
.datepicker-controls .button:focus {
  border-color: var(--theme-100);
  color: #363636;
}
.datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(186, 158, 61, 0.25);
}
.datepicker-controls .button:active {
  border-color: #303030;
  color: #363636;
}
.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}
.datepicker-header .datepicker-controls .button {
  border-color: transparent;
  font-weight: bold;
}
.datepicker-header .datepicker-controls .button:hover {
  background-color: #f9f9f9;
}
.datepicker-header .datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}
.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}
.datepicker-header .datepicker-controls .button[disabled] {
  box-shadow: none;
}
.datepicker-footer .datepicker-controls .button {
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  width: 100%;
  font-size: 0.75em;
}
.datepicker-controls .view-switch {
  flex: auto;
}
.datepicker-controls .prev-btn,
.datepicker-controls .next-btn {
  padding-right: 0.375em;
  padding-left: 0.375em;
  width: 2.25em;
}
.datepicker-controls .prev-btn.disabled,
.datepicker-controls .next-btn.disabled {
  visibility: hidden;
}

.datepicker-view .dow {
  height: 1.5em;
  line-height: 1.5em;
  font-size: 0.875em;
  font-weight: 700;
}
.datepicker-view .week {
  width: 2.25em;
  color: var(--theme-500);
  font-size: 0.75em;
}
@media (max-width: 22.5em) {
  .datepicker-view .week {
    width: 1.96875em;
  }
}

.datepicker-grid {
  width: 15.75em;
}
@media (max-width: 22.5em) {
  .calendar-weeks + .days .datepicker-grid {
    width: 13.78125em;
  }
}

.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.datepicker-cell.focused:not(.selected) {
  background-color: #e8e8e8;
}
.datepicker-cell.selected, .datepicker-cell.selected:hover {
  background-color: var(--theme-100);
  color: #fff;
  font-weight: 600;
}
.datepicker-cell.disabled {
  color: #dbdbdb;
}
.datepicker-cell.prev:not(.disabled), .datepicker-cell.next:not(.disabled) {
  color: #7a7a7a;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: whitesmoke;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #eeeeee;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e8e8e8;
}
.datepicker-cell.today:not(.selected) {
  background-color: #e6e6e6;
}
.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #000;
}
.datepicker-cell.today.focused:not(.selected) {
  background-color: #dfdfdf;
}
.datepicker-cell.range-end:not(.selected), .datepicker-cell.range-start:not(.selected) {
  background-color: var(--theme-500);
  color: #fff;
}
.datepicker-cell.range-end.focused:not(.selected), .datepicker-cell.range-start.focused:not(.selected) {
  background-color: #afafaf;
}
.datepicker-cell.range-start {
  border-radius: 4px 0 0 4px;
}
.datepicker-cell.range-end {
  border-radius: 0 4px 4px 0;
}
.datepicker-cell.range {
  border-radius: 0;
  background-color: #dbdbdb;
}
.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d5d5d5;
}
.datepicker-cell.range.disabled {
  color: #c2c2c2;
}
.datepicker-cell.range.focused {
  background-color: #cfcfcf;
}
.datepicker-view.datepicker-grid .datepicker-cell {
  height: 4.5em;
  line-height: 4.5em;
}

.datepicker-input.in-edit {
  border-color: #a78e37;
}
.datepicker-input.in-edit:focus, .datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(167, 142, 55, 0.2);
}

.confirmation-swal img{
	width:30%;
	height:30%;
}
.confirmation-swal{
	width:30%;
	height:30%;
	padding-bottom:30px;
}
/*# sourceMappingURL=main.css.map */


/*Adittional changes*/
.taken_slots{
	display:none;
}

/*  */

.main {
  display: flex;
}

.content {
	width:100%;
  flex-grow: 1;
}

.swal-button {
  display: inline-block;
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.24);
  padding: 15px 25px;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition-duration: 0.15s;
  transition-property: background-color, opacity, box-shadow, color;
  transition-timing-function: cubic-bezier(0.75, 0.25, 0.25, 0.75);
  max-width: 100%;
}


.swal-button.orange {
  background-color: #c78b04;
}

.swal-modal .swal-text {
    text-align: center;
}

.bag-class img{
	width:88px;
	height:88px;
}
.header__button.header__button--venuename{
	width:100%;
}
.header__button.header__button--venuename a{
	width:100%;
	cursor:default;
	overflow-y:auto;
}

.border-theme{
	border-color: var(--theme-border-color);
}

.randomgotobasketbutton{
  display:none;
}

@media screen and (max-width: 375px) {
  .randomgotobasketbutton{
    display:block;
  }
}
